From: Jim Blandy Date: Tue, 18 May 1993 20:36:11 +0000 (+0000) Subject: * subr.el (overlay-start, overlay-end, overlay-buffer): Removed. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96198 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=ee5fb85ff1d233f81f30bec007635c0da4f326b0;p=emacs.git * subr.el (overlay-start, overlay-end, overlay-buffer): Removed. --- diff --git a/lisp/subr.el b/lisp/subr.el index 74c8968fc1c..d5260e67d84 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -335,21 +335,6 @@ POSITION should be a list of the form nas returned by the `event-start' and `event-end' functions." (nth 3 position)) - -;;;; Overlay dissection functions. - -(defsubst overlay-start (overlay) - "Return the position at which OVERLAY starts." - (marker-position (car (car overlay)))) - -(defsubst overlay-end (overlay) - "Return the position at which OVERLAY ends." - (marker-position (cdr (car overlay)))) - -(defsubst overlay-buffer (overlay) - "Return the buffer OVERLAY belongs to." - (marker-buffer (overlay-start overlay))) - ;;;; Obsolescent names for functions.